Index: Makefile =================================================================== --- Makefile (revision 9) +++ Makefile (working copy) @@ -24,6 +24,7 @@ FETCHOBJ = fetch2300.o rw2300.o linux2300.o win2300.o WUOBJ = wu2300.o rw2300.o linux2300.o win2300.o CWOBJ = cw2300.o rw2300.o linux2300.o win2300.o +UPOBJ = up2300.o rw2300.o linux2300.o win2300.o DUMPOBJ = dump2300.o rw2300.o linux2300.o win2300.o HISTOBJ = history2300.o rw2300.o linux2300.o win2300.o HISTLOGOBJ = histlog2300.o rw2300.o linux2300.o win2300.o @@ -47,7 +48,7 @@ ####### Build rules -all: open2300 dump2300 log2300 fetch2300 wu2300 cw2300 history2300 histlog2300 bin2300 xml2300 light2300 interval2300 minmax2300 mysql2300 mysqlhistlog2300 +all: open2300 dump2300 log2300 fetch2300 wu2300 cw2300 up2300 history2300 histlog2300 bin2300 xml2300 light2300 interval2300 minmax2300 mysql2300 mysqlhistlog2300 open2300 : $(OBJ) $(CC) $(CFLAGS) -o $@ $(OBJ) $(CC_LDFLAGS) @@ -67,6 +68,9 @@ cw2300 : $(CWOBJ) $(CC) $(CFLAGS) -o $@ $(CWOBJ) $(CC_LDFLAGS) $(CC_WINFLAG) +up2300 : $(UPOBJ) + $(CC) $(CFLAGS) -o $@ $(UPOBJ) $(CC_LDFLAGS) $(CC_WINFLAG) + history2300 : $(HISTOBJ) $(CC) $(CFLAGS) -o $@ $(HISTOBJ) $(CC_LDFLAGS) @@ -106,6 +110,7 @@ $(INSTALL) fetch2300 $(bindir) $(INSTALL) wu2300 $(bindir) $(INSTALL) cw2300 $(bindir) + $(INSTALL) up2300 $(bindir) $(INSTALL) histlog2300 $(bindir) $(INSTALL) xml2300 $(bindir) $(INSTALL) light2300 $(bindir) @@ -115,10 +120,10 @@ $(INSTALL) mysqlhistlog2300 $(bindir) uninstall: - rm -f $(bindir)/open2300 $(bindir)/dump2300 $(bindir)/log2300 $(bindir)/fetch2300 $(bindir)/wu2300 $(bindir)/cw2300 $(bindir)/xml2300 $(bindir)/light2300 $(bindir)/interval2300 $(bindir)/minmax2300 $(bindir)/mysql2300 $(bindir)/mysqlhistlog2300 + rm -f $(bindir)/open2300 $(bindir)/dump2300 $(bindir)/log2300 $(bindir)/fetch2300 $(bindir)/wu2300 $(bindir)/cw2300 $(bindir)/up2300 $(bindir)/xml2300 $(bindir)/light2300 $(bindir)/interval2300 $(bindir)/minmax2300 $(bindir)/mysql2300 $(bindir)/mysqlhistlog2300 clean: - rm -f *~ *.o open2300 dump2300 log2300 fetch2300 wu2300 cw2300 history2300 histlog2300 bin2300 xml2300 mysql2300 pgsql2300 light2300 interval2300 minmax2300 mysql2300 mysqlhistlog2300 + rm -f *~ *.o open2300 dump2300 log2300 fetch2300 wu2300 cw2300 up2300 history2300 histlog2300 bin2300 xml2300 mysql2300 pgsql2300 light2300 interval2300 minmax2300 mysql2300 mysqlhistlog2300 cleanexe: - rm -f *~ *.o open2300.exe dump2300.exe log2300.exe fetch2300.exe wu2300.exe cw2300.exe history2300.exe histlog2300.exe bin2300.exe xml2300.exe mysql2300.exe pgsql2300.exe light2300.exe interval2300.exe minmax2300.exe \ No newline at end of file + rm -f *~ *.o open2300.exe dump2300.exe log2300.exe fetch2300.exe wu2300.exe cw2300.exe up2300.exe history2300.exe histlog2300.exe bin2300.exe xml2300.exe mysql2300.exe pgsql2300.exe light2300.exe interval2300.exe minmax2300.exe \ No newline at end of file