mirror of
https://github.com/Andreabont/CExperiments.git
synced 2025-01-18 17:24:21 +00:00
14 lines
191 B
Makefile
14 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
|