mirror of
https://github.com/aprochazka/ProfilometerProbe.git
synced 2025-06-30 09:37:22 +02:00
add test script
This commit is contained in:
16
Test/Makefile
Normal file
16
Test/Makefile
Normal file
@ -0,0 +1,16 @@
|
||||
CC = gcc
|
||||
CFLAGS = -Wall -Wextra
|
||||
|
||||
SRCS = uart_jpeg.c
|
||||
OBJS = $(SRCS:.c=.o)
|
||||
|
||||
all: uart_jpeg
|
||||
|
||||
uart_jpeg: $(OBJS)
|
||||
$(CC) $(CFLAGS) -o $@ $^
|
||||
|
||||
%.o: %.c
|
||||
$(CC) $(CFLAGS) -c $<
|
||||
|
||||
clean:
|
||||
rm -f $(OBJS) uart_jpeg
|
Reference in New Issue
Block a user