mirror of
https://github.com/0intro/conterm
synced 2024-11-22 05:41:28 +03:00
21 lines
235 B
Makefile
21 lines
235 B
Makefile
ROOT=..
|
|
include ../Make.config
|
|
LIB=libgui.a
|
|
|
|
OFILES=\
|
|
alloc.$O\
|
|
cload.$O\
|
|
draw.$O\
|
|
load.$O\
|
|
screen.$O\
|
|
wstrtoutf.$O
|
|
|
|
default: $(LIB)
|
|
$(LIB): $(OFILES)
|
|
$(AR) r $(LIB) $(OFILES)
|
|
$(RANLIB) $(LIB)
|
|
|
|
%.$O: %.c
|
|
$(CC) $(CFLAGS) $*.c
|
|
|