Simple ArrayList and FIFO for C projects
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

13 lines
204 B

GXX_COMMAND = gcc -O3
default: datatypes.c datatypes.h
$(GXX_COMMAND) datatypes.c -c
test: default test.c
$(GXX_COMMAND) test.c -c
$(GXX_COMMAND) test.o datatypes.o -o test
clean:
rm *.o
rm test