9 lines
165 B
Makefile
9 lines
165 B
Makefile
|
# bucket - simple file manager with tags and comments
|
||
|
|
||
|
include config.mk
|
||
|
|
||
|
SRC = main.c
|
||
|
|
||
|
bucket:
|
||
|
${CC} -o hotpot ${SRC} ${BTKFILES} ${CPPFLAGS} ${CFLAGS} ${LIBS} -g
|