mirror of
https://github.com/0intro/conterm
synced 2024-11-21 13:21:50 +03:00
14 lines
162 B
Makefile
14 lines
162 B
Makefile
ROOT=..
|
|
include ../Make.config
|
|
LIB=libgui.a
|
|
|
|
OFILES=\
|
|
x11.$O\
|
|
keysym2ucs-x11.$O
|
|
|
|
default: $(LIB)
|
|
$(LIB): $(OFILES)
|
|
$(AR) r $(LIB) $(OFILES)
|
|
$(RANLIB) $(LIB)
|
|
|