mirror of
https://github.com/ysoftdevs/cpp-examples.git
synced 2026-01-11 22:40:49 +01:00
16 lines
140 B
Makefile
16 lines
140 B
Makefile
|
|
|
|
OBJ = main.o parsing.o
|
|
LDADD =
|
|
|
|
test: $(OBJ)
|
|
${CC} ${OBJ} -o test ${LDADD}
|
|
|
|
|
|
.c.o:
|
|
${CC} ${CFLAGS} -c $<
|
|
|
|
clean:
|
|
rm -f test *.o
|
|
|