mirror of
https://github.com/nishiowo/nishbox
synced 2025-04-21 12:14:39 +00:00
8 lines
166 B
Makefile
8 lines
166 B
Makefile
TARGET = nishbox$(EXEC)
|
|
OBJS = main.o
|
|
|
|
include ../common.mk
|
|
|
|
$(TARGET): $(OBJS) ../engine/libnishbox.a
|
|
$(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) ../engine/libnishbox.a
|