wmail: fixed use-after-free.
[dockapps.git] / yawmppp / src / gtksetup / Makefile.in
blob388196f0957554ea1f57f03ae050a4d785efd363
2 # gtksetup: a setup applet for yawmppp
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 = applet.o msgbox.o
13 ALLDOTHS = applet.h msgbox.h ../isprc.h
14 EOBJS = ../isprc.o ../about.o
16 all: build_gtksetup
18 build_gtksetup: $(ALLDOTOS)
19 $(CC) $(ALLDOTOS) $(EOBJS) -o yawmppp.pref $(GTKLIB)
21 $(ALLDOTOS): %.o : %.c $(ALLDOTHS)
22 $(CC) $(CFLAGS) $(RLFLAG) $(GTKFLAG) -I.. -c $< -o $@
24 install:
25 $(PROGINST) -m 0755 yawmppp.pref @prefix@/bin/yawmppp.pref
26 $(PROGINST) -m 0644 pppdoc.xpm @prefix@/share/icons/pppdoc.xpm
28 install-strip:
29 $(PROGINST) -s -m 0755 yawmppp.pref @prefix@/bin/yawmppp.pref
30 $(PROGINST) -m 0644 pppdoc.xpm @prefix@/share/icons/pppdoc.xpm
32 clean:
33 rm -f $(ALLDOTOS) yawmppp.pref
35 distclean:
36 rm -f Makefile *~