sandbox-c/write-location-file/makefile

13 lines
351 B
Makefile
Raw Normal View History

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