sandbox-c/write-location-file/makefile

10 lines
169 B
Makefile
Raw Normal View History

2023-01-02 16:58:24 +01:00
#put the most commonly desired target first (default)
all: main.o
gcc main.o -o write
main.o: main.c
gcc -I . -c main.c
clean:
rm -rf *.o
rm -rf write
rm -rf *.csv