wmclockmon: update change-log
[dockapps.git] / yawmppp / src / thinppp / Makefile.in
blob2e51c5594dd43568104242b01a5547c6ab3810a4
2 # thinppp: non-docked PPP applet
5 CC = @CC@
6 CFLAGS = -Wall -O2
7 GTKLIB = @GTK_LIBS@
8 GTKFLAG = @GTK_FLAGS@
9 RLFLAG = -DVERSION=\"@MK_YAWMPPP_RELEASE@\" -DIPREFIX=\"@prefix@\" -D@SYSDEF@
10 PROGINST = @INSTALL@
12 ALLDOTOS = thinppp.o
13 ALLDOTHS = thinppp.h ../isprc.h ../misc.h ../list.h ../ycommon.h
14 EOBJS = ../isprc.o ../ycommon.o ../misc.o ../list.o
16 all: build_thinppp
18 build_thinppp: $(ALLDOTOS)
19 $(CC) $(ALLDOTOS) $(EOBJS) -o yawmppp.thin $(GTKLIB)
21 $(ALLDOTOS): %.o : %.c $(ALLDOTHS)
22 $(CC) $(CFLAGS) $(RLFLAG) $(GTKFLAG) -I.. -c $< -o $@
24 install:
25 $(PROGINST) -m 0755 yawmppp.thin @prefix@/bin/yawmppp.thin
27 install-strip:
28 $(PROGINST) -s -m 0755 yawmppp.thin @prefix@/bin/yawmppp.thin
31 clean:
32 rm -f $(ALLDOTOS) yawmppp.thin
34 distclean:
35 rm -f Makefile *~