yawmppp: Add version 2.0.2 to the repository.
[dockapps.git] / yawmppp / src / gtklog / Makefile.in
blob865dbecd07fb0d76cfd26cd2881a1917223de0b8
2 # gtklog: shows yawmppp log files
5 CC = @CC@
6 CFLAGS = -Wall -O2
7 GTKLIB = @GTK_LIBS@
8 GTKFLAG = @GTK_FLAGS@
9 RLFLAG = -DVERSION=\"@MK_YAWMPPP_RELEASE@\"
10 PROGINST = @INSTALL@
11 EOBJS = ../about.o
13 ALLDOTOS = loglist.o
14 ALLDOTHS = loglist.h
16 all: build_gtklog
18 build_gtklog: $(ALLDOTOS)
19 $(CC) $(ALLDOTOS) $(EOBJS) -o yawmppp.log $(GTKLIB)
21 $(ALLDOTOS): %.o : %.c $(ALLDOTHS)
22 $(CC) $(CFLAGS) $(RLFLAG) $(GTKFLAG) -I.. -c $< -o $@
24 install:
25 $(PROGINST) -m 0755 yawmppp.log @prefix@/bin/yawmppp.log
27 install-strip:
28 $(PROGINST) -s -m 0755 yawmppp.log @prefix@/bin/yawmppp.log
30 clean:
31 rm -f $(ALLDOTOS) yawmppp.log
33 distclean:
34 rm -f Makefile *~