mirror of
https://github.com/ysoftdevs/cpp-examples.git
synced 2026-01-19 10:07:06 +01:00
Add Minunit example
This commit is contained in:
15
minunit/Makefile
Normal file
15
minunit/Makefile
Normal file
@@ -0,0 +1,15 @@
|
||||
|
||||
|
||||
OBJ = main.o parsing.o
|
||||
LDADD =
|
||||
|
||||
test: $(OBJ)
|
||||
${CC} ${OBJ} -o test ${LDADD}
|
||||
|
||||
|
||||
.c.o:
|
||||
${CC} ${CFLAGS} -c $<
|
||||
|
||||
clean:
|
||||
rm -f test *.o
|
||||
|
||||
Reference in New Issue
Block a user