sandbox-c/write-location-file/makefile

10 lines
169 B
Makefile

#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