You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
190 B
Makefile

CC := gcc
CFLAGS := -Wall
LINKER_FLAGS = `sdl2-config --cflags --libs`
test:
make clean
make build
build:
$(CC) $(CFLAGS) -o bocm bocm.c $(LINKER_FLAGS)
run:
./bocm
clean:
-rm bocm