mirror of
https://github.com/nishiowo/nishbox
synced 2025-04-21 04:04:39 +00:00
8 lines
103 B
Makefile
8 lines
103 B
Makefile
TARGET = libnishbox.a
|
|
OBJS = version.o
|
|
|
|
include ../common.mk
|
|
|
|
$(TARGET): $(OBJS)
|
|
$(AR) rcs $@ $(OBJS)
|