2024-04-09 22:16:23 +02:00

12 lines
175 B
Makefile

%.o: %.cpp
${COMPILE.cpp} $< -o $@
%.o: %.c
${COMPILE.c} $< -o $@
main: main.o StrangeFlag.o tcl_displayer.o
${LINK.cpp} $+ $$(pkg-config --libs tcl tk)
clean:
-rm *.o