mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-05 22:43:24 +00:00
11 lines
217 B
Makefile
11 lines
217 B
Makefile
|
LIBS = -L${X11BASE}/lib -lepplet
|
||
|
CFLAGS += -I${X11BASE}/include
|
||
|
|
||
|
all: E-Buttons.epplet
|
||
|
|
||
|
E-Buttons.epplet: E-buttons.c
|
||
|
${CC} ${CFLAGS} ${.ALLSRC} ${LIBS} -o ${.TARGET}
|
||
|
|
||
|
clean:
|
||
|
rm -f E-Buttons.epplet E-buttons.epplet
|