mirror of
https://github.com/0intro/conterm
synced 2024-11-22 05:41:28 +03:00
21 lines
286 B
Makefile
21 lines
286 B
Makefile
LIB=libx11.a
|
|
CC=gcc
|
|
CFLAGS=-I../include -I. -I/usr/X11R6/include -I../kern -c -ggdb -D_THREAD_SAFE -pthread
|
|
O=o
|
|
|
|
OFILES=\
|
|
alloc.$O\
|
|
cload.$O\
|
|
draw.$O\
|
|
load.$O\
|
|
screen.$O\
|
|
keysym2ucs-x11.$O
|
|
|
|
$(LIB): $(OFILES)
|
|
ar r $(LIB) $(OFILES)
|
|
ranlib $(LIB)
|
|
|
|
%.$O: %.c
|
|
$(CC) $(CFLAGS) $*.c
|
|
|