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.
|
|
|
CFLAGS=-Wall -Wextra -O0 -g -ggdb -pedantic
|
|
|
|
|
|
|
|
all: test
|
|
|
|
|
|
|
|
%.o: %.c
|
|
|
|
gcc $(CFLAGS) -c $<
|
|
|
|
|
|
|
|
test: main.c database.o bitmap.o
|
|
|
|
gcc $(CFLAGS) -o $@ $^
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f *.o
|
|
|
|
rm -f test
|