mirror of
https://github.com/Andreabont/CExperiments.git
synced 2024-11-23 10:17:59 +00:00
15 lines
191 B
Makefile
15 lines
191 B
Makefile
CC=gcc
|
|
CFLAGS=-I. -g
|
|
DEPS = base_list.h list.h
|
|
OBJ = main.o base_list.o list.o
|
|
|
|
%.o: %.c $(DEPS)
|
|
$(CC) -c -o $@ $< $(CFLAGS)
|
|
|
|
list: $(OBJ)
|
|
gcc -o $@ $^ $(CFLAGS)
|
|
|
|
clean:
|
|
rm *.o
|
|
rm list
|