]> bicyclesonthemoon.info Git - ott/bsta/blobdiff - makefile.1.mak
change makefile regeneration command
[ott/bsta] / makefile.1.mak
index ea0971c950acc90193577494cf36cc56778d5d12..386856106f73f968f43c9a270200b6c3a5f5be22 100644 (file)
@@ -48,7 +48,7 @@ CONFIGFILE = settings-$(TARGET).txt settings.txt
 DEFAULT_CONFIGFILE = settings-$(DEFAULT_TARGET).txt settings.txt
 
 # The configuration tool
-CONFIGURE_CMD = $(PERL) ./configure.pl $(CONFIGFILE)
+CONFIGURE_CMD = $(PERL) ./configure.pl --do $(CONFIGFILE)
 
 # keep these 2 lists in the same order!:
 GENERATE_FROM=\
@@ -62,7 +62,6 @@ chat.1.pl\
 frame.1.pl\
 goto.1.pl\
 info.1.pl\
-oldlogs.1.pl\
 opomba.1.pl\
 ong.1.pl\
 reset.1.pl\
@@ -80,7 +79,6 @@ chat.pl\
 frame.pl\
 goto.pl\
 info.pl\
-oldlogs.pl\
 opomba.pl\
 ong.pl\
 reset.pl\
@@ -120,7 +118,6 @@ chat.pl\
 frame.pl\
 goto.pl\
 info.pl\
-oldlogs.pl\
 opomba.pl\
 ong.pl\
 reset.pl\
@@ -153,18 +150,19 @@ timer.js
 
 
 all: $(BIN) setuid exec
+       
 
 makefile: makefile.1.mak $(CONFIGFILE) configure.pl
-       $(CONFIGURE_CMD) < makefile.1.mak > makefile
+       $(CONFIGURE_CMD) --in makefile.1.mak --out makefile
 
 configure.pl: $(CONFIGFILE) config/configure.1.pl
-       $(PERL) config/configure.1.pl target=direct settings-$(TARGET).txt config/settings.txt --in config/configure.1.pl --out configure.pl
+       $(PERL) config/configure.1.pl --do target=direct settings-$(TARGET).txt config/settings.txt --in config/configure.1.pl --out configure.pl
 
 $(TO_GENERATE): $(GENERATE_FROM) $(CONFIGFILE) configure.pl
-       $(CONFIGURE_CMD) --in $(GENERATE_FROM) --out $(TO_GENERATE)
+       $(CONFIGURE_CMD) --v --in $(GENERATE_FROM) --out $(TO_GENERATE)
 
 $(PERL_WRAP_EXEC): %: exec/exec.c exec/settings.txt configure.pl
-       $(PERL) configure.pl path=$(BIN_PATH) target=$*.pl io_path=$(LOG_PATH) stderr=$*-stderr.log exec/settings.txt --in exec/exec.c --out $*.c
+       $(PERL) configure.pl --do path=$(BIN_PATH) target=$*.pl io_path=$(LOG_PATH) stderr=$*-stderr.log exec/settings.txt --in exec/exec.c --out $*.c
        $(CC) $(CF) -o $@ $*.c
 
 exec: $(EXEC)
@@ -202,9 +200,11 @@ cp_cron: bsta.cron
        $(SUDO) $(CP) bsta.cron $(CRON)
 
 install: all cp_bin cp_lib cp_www cp_conf cp_cron
+       
 
 clean:
        $(RM) -f configure.pl $(TO_GENERATE) $(PERL_WRAP_EXEC) $(PERL_WRAP_EXEC:=.c)
-       $(PERL) config/configure.1.pl $(DEFAULT_CONFIGFILE) < makefile.1.mak > makefile
+       $(PERL) config/configure.1.pl --do $(DEFAULT_CONFIGFILE) --in makefile.1.mak --out makefile
 
 PHONY: all clean install setuid exec mktree cp_bin cp_lib cp_www cp_conf cp_cron
+