|
Lines 1-105
Link Here
|
| 1 |
diff -urN ../dap-2.1.1.orig/Makefile ./Makefile |
|
|
| 2 |
--- ../dap-2.1.1.orig/Makefile Thu Jan 1 09:00:00 1970 |
| 3 |
+++ ./Makefile Sat Jun 10 21:12:24 2000 |
| 4 |
@@ -0,0 +1,101 @@ |
| 5 |
+BACKDIR = ./bak |
| 6 |
+HOMEDIR = $(HOME) |
| 7 |
+DAPVER = dap-2.1.1 |
| 8 |
+ |
| 9 |
+all: DAP |
| 10 |
+ |
| 11 |
+DAP: |
| 12 |
+ (cd tooltips; make -f Makefile.linux); |
| 13 |
+ (cd libaudio; make -f Makefile.linux); |
| 14 |
+ (cd libaudiofile; make -f Makefile.linux); |
| 15 |
+ (cd spkit/spkit; make -f Makefile.linux); |
| 16 |
+ (cd main; make -f Makefile.linux); |
| 17 |
+ |
| 18 |
+release: DAP |
| 19 |
+ strip main/DAP |
| 20 |
+ (cd ..; tar -cf $(HOMEDIR)/bin-linux-$(DAPVER).tar $(DAPVER)/main/DAP $(DAPVER)/main/effects \ |
| 21 |
+ $(DAPVER)/README $(DAPVER)/INSTALL $(DAPVER)/COPYING $(DAPVER)/CHANGES $(DAPVER)/TODO $(DAPVER)/THANKS); |
| 22 |
+ gzip $(HOMEDIR)/bin-linux-$(DAPVER).tar; \ |
| 23 |
+ mv $(HOMEDIR)/bin-linux-$(DAPVER).tar.gz $(HOMEDIR)/bin-linux-$(DAPVER).tgz |
| 24 |
+ |
| 25 |
+source: |
| 26 |
+ (cd ..; tar -cf $(HOMEDIR)/$(DAPVER).tar $(DAPVER)/main/effects \ |
| 27 |
+ $(DAPVER)/README $(DAPVER)/INSTALL $(DAPVER)/COPYING $(DAPVER)/CHANGES $(DAPVER)/TODO $(DAPVER)/THANKS \ |
| 28 |
+ $(DAPVER)/Makefile.* $(DAPVER)/main/*.c $(DAPVER)/main/*.cc $(DAPVER)/main/*.h $(DAPVER)/main/*.fd \ |
| 29 |
+ $(DAPVER)/main/icons/*.gif $(DAPVER)/main/icons/*.xpm $(DAPVER)/main/Makefile.* \ |
| 30 |
+ $(DAPVER)/main/effects $(DAPVER)/sound/*.h $(DAPVER)/sound/*.cc $(DAPVER)/sound/*.inl \ |
| 31 |
+ $(DAPVER)/sound/Makefile.* $(DAPVER)/spkit/spkit/*.cc $(DAPVER)/spkit/spkit/*.h \ |
| 32 |
+ $(DAPVER)/libaudio/*.c $(DAPVER)/libaudio/*.h $(DAPVER)/libaudio/Makefile.* \ |
| 33 |
+ $(DAPVER)/libaudiofile/*.c $(DAPVER)/libaudiofile/*.h $(DAPVER)/libaudiofile/Makefile.* \ |
| 34 |
+ $(DAPVER)/spkit/spkit/Makefile.* $(DAPVER)/tooltips/CHANGES $(DAPVER)/tooltips/COPYING \ |
| 35 |
+ $(DAPVER)/tooltips/Makefile.* $(DAPVER)/tooltips/README $(DAPVER)/tooltips/THANKS \ |
| 36 |
+ $(DAPVER)/tooltips/TODO $(DAPVER)/tooltips/*.c $(DAPVER)/tooltips/*.h $(DAPVER)/tooltips/*.fd \ |
| 37 |
+ $(DAPVER)/tooltips/examples/menu/Makefile $(DAPVER)/tooltips/examples/menu/*.c \ |
| 38 |
+ $(DAPVER)/tooltips/examples/menu/*.h $(DAPVER)/tooltips/examples/menu/*.fd); |
| 39 |
+ gzip $(HOMEDIR)/$(DAPVER).tar; \ |
| 40 |
+ mv $(HOMEDIR)/$(DAPVER).tar.gz $(HOMEDIR)/$(DAPVER).tgz |
| 41 |
+ |
| 42 |
+cleanall: |
| 43 |
+ (cd tooltips; make -f Makefile.linux clean); |
| 44 |
+ (cd libaudio; make -f Makefile.linux clean); |
| 45 |
+ (cd libaudiofile; make -f Makefile.linux clean); |
| 46 |
+ (cd sound; make -f Makefile.linux clean); |
| 47 |
+ (cd spkit/spkit; make -f Makefile.linux clean); |
| 48 |
+ (cd main; make -f Makefile.linux clean); |
| 49 |
+ |
| 50 |
+emptyall: |
| 51 |
+ (cd tooltips; make -f Makefile.linux empty); |
| 52 |
+ (cd libaudio; make -f Makefile.linux empty); |
| 53 |
+ (cd libaudiofile; make -f Makefile.linux empty); |
| 54 |
+ (cd sound; make -f Makefile.linux empty); |
| 55 |
+ (cd spkit/spkit; make -f Makefile.linux empty); |
| 56 |
+ (cd main; make -f Makefile.linux empty); |
| 57 |
+ |
| 58 |
+backall: back |
| 59 |
+ (cd tooltips; make -f Makefile.linux back); |
| 60 |
+ (cd libaudio; make -f Makefile.linux back); |
| 61 |
+ (cd libaudiofile; make -f Makefile.linux back); |
| 62 |
+ (cd sound; make -f Makefile.linux back); |
| 63 |
+ (cd spkit/spkit; make -f Makefile.linux back); |
| 64 |
+ (cd main; make -f Makefile.linux back); |
| 65 |
+ |
| 66 |
+back: |
| 67 |
+ "cp" README $(BACKDIR) |
| 68 |
+ "cp" INSTALL $(BACKDIR) |
| 69 |
+ "cp" COPYING $(BACKDIR) |
| 70 |
+ "cp" CHANGES $(BACKDIR) |
| 71 |
+ "cp" TODO $(BACKDIR) |
| 72 |
+ "cp" THANKS $(BACKDIR) |
| 73 |
+ "cp" Makefile.* $(BACKDIR) |
| 74 |
+ lha a $(HOMEDIR)/tich4.lzh \ |
| 75 |
+ README INSTALL COPYING CHANGES TODO THANKS Makefile.* |
| 76 |
+ |
| 77 |
+restoreall: restore |
| 78 |
+ (cd tooltips; make -f Makefile.linux restore); |
| 79 |
+ (cd libaudio; make -f Makefile.linux restore); |
| 80 |
+ (cd libaudiofile; make -f Makefile.linux restore); |
| 81 |
+ (cd sound; make -f Makefile.linux restore); |
| 82 |
+ (cd spkit/spkit; make -f Makefile.linux restore); |
| 83 |
+ (cd main; make -f Makefile.linux restore); |
| 84 |
+ |
| 85 |
+restore: |
| 86 |
+ lha x $(HOMEDIR)/tich4.lzh |
| 87 |
+ |
| 88 |
+printall: print |
| 89 |
+ (cd tooltips; make -f Makefile.linux print); |
| 90 |
+ (cd libaudio; make -f Makefile.linux print); |
| 91 |
+ (cd libaudiofile; make -f Makefile.linux print); |
| 92 |
+ (cd sound; make -f Makefile.linux print); |
| 93 |
+ (cd spkit/spkit; make -f Makefile.linux print); |
| 94 |
+ (cd main; make -f Makefile.linux print); |
| 95 |
+ |
| 96 |
+print: |
| 97 |
+ a2ps \ |
| 98 |
+ README \ |
| 99 |
+ INSTALL \ |
| 100 |
+ COPYING \ |
| 101 |
+ CHANGES \ |
| 102 |
+ TODO \ |
| 103 |
+ THANKS \ |
| 104 |
+ Makefile.* \ |
| 105 |
+ >$(HOMEDIR)/tich4.ps |