Home » Archimedes archive » Acorn User » AU 1995-07.adf » !Internet_StarterPak » !Newsbase/Support/taylor/csrc/Makefile
!Newsbase/Support/taylor/csrc/Makefile
This website contains an archive of files for the Acorn Electron, BBC Micro, Acorn Archimedes, Commodore 16 and Commodore 64 computers, which Dominic Ford has rescued from his private collection of floppy disks and cassettes.
Some of these files were originally commercial releases in the 1980s and 1990s, but they are now widely available online. I assume that copyright over them is no longer being asserted. If you own the copyright and would like files to be removed, please contact me.
Tape/disk: | Home » Archimedes archive » Acorn User » AU 1995-07.adf » !Internet_StarterPak |
Filename: | !Newsbase/Support/taylor/csrc/Makefile |
Read OK: | ✔ |
File size: | 0348 bytes |
Load address: | 0000 |
Exec address: | 0000 |
File contents
# Makefile for some additional stuff to interface Taylor uucp and NewsBase # # Author: Gunnar Z�tl # Date: 18-Sep-1994 # Last modified: 18-Sep-1994 CC = cc #-g # add -DDEBUG to the following if you want debugging information CFLAGS = -O -throwback -wp #-DDEBUG SETTYPE = settype $@ absolute .DEFAULT: @echo and now smile for $<... .c.o:; $(CC) $(CFLAGS) -c $< all: lmail lrnews lmail: lmail.o upath.o $(CC) -o lmail lmail.o upath.o $(SETTYPE) lrnews: lrnews.o upath.o $(CC) -o lrnews lrnews.o upath.o $(SETTYPE) lmail.o: lmail.c config.h upath.h lrnews.o: lrnews.c config.h upath.h upath.o: upath.c upath.h clean: remove o.lmail remove o.lrnews remove o.upath remove lmail remove lrnews install: lmail lrnews -copy lmail ^.bin.lmail -copy lrnews ^.bin.lrnews
00000000 23 20 4d 61 6b 65 66 69 6c 65 20 66 6f 72 20 73 |# Makefile for s| 00000010 6f 6d 65 20 61 64 64 69 74 69 6f 6e 61 6c 20 73 |ome additional s| 00000020 74 75 66 66 20 74 6f 20 69 6e 74 65 72 66 61 63 |tuff to interfac| 00000030 65 20 54 61 79 6c 6f 72 20 75 75 63 70 20 61 6e |e Taylor uucp an| 00000040 64 20 4e 65 77 73 42 61 73 65 0a 23 0a 23 20 41 |d NewsBase.#.# A| 00000050 75 74 68 6f 72 3a 20 20 20 09 20 20 20 20 47 75 |uthor: . Gu| 00000060 6e 6e 61 72 20 5a f6 74 6c 0a 23 20 44 61 74 65 |nnar Z.tl.# Date| 00000070 3a 09 20 20 20 20 09 20 20 20 20 31 38 2d 53 65 |:. . 18-Se| 00000080 70 2d 31 39 39 34 0a 23 20 4c 61 73 74 20 6d 6f |p-1994.# Last mo| 00000090 64 69 66 69 65 64 3a 20 20 20 20 31 38 2d 53 65 |dified: 18-Se| 000000a0 70 2d 31 39 39 34 0a 0a 43 43 20 3d 20 63 63 20 |p-1994..CC = cc | 000000b0 23 2d 67 0a 23 20 61 64 64 20 2d 44 44 45 42 55 |#-g.# add -DDEBU| 000000c0 47 20 74 6f 20 74 68 65 20 66 6f 6c 6c 6f 77 69 |G to the followi| 000000d0 6e 67 20 69 66 20 79 6f 75 20 77 61 6e 74 20 64 |ng if you want d| 000000e0 65 62 75 67 67 69 6e 67 20 69 6e 66 6f 72 6d 61 |ebugging informa| 000000f0 74 69 6f 6e 0a 43 46 4c 41 47 53 20 3d 20 2d 4f |tion.CFLAGS = -O| 00000100 20 2d 74 68 72 6f 77 62 61 63 6b 20 2d 77 70 20 | -throwback -wp | 00000110 23 2d 44 44 45 42 55 47 0a 53 45 54 54 59 50 45 |#-DDEBUG.SETTYPE| 00000120 20 3d 20 73 65 74 74 79 70 65 20 24 40 20 61 62 | = settype $@ ab| 00000130 73 6f 6c 75 74 65 0a 0a 2e 44 45 46 41 55 4c 54 |solute...DEFAULT| 00000140 3a 0a 20 20 20 20 20 40 65 63 68 6f 20 61 6e 64 |:. @echo and| 00000150 20 6e 6f 77 20 73 6d 69 6c 65 20 66 6f 72 20 24 | now smile for $| 00000160 3c 2e 2e 2e 0a 0a 2e 63 2e 6f 3a 3b 20 24 28 43 |<......c.o:; $(C| 00000170 43 29 20 24 28 43 46 4c 41 47 53 29 20 2d 63 20 |C) $(CFLAGS) -c | 00000180 24 3c 0a 0a 61 6c 6c 3a 20 6c 6d 61 69 6c 20 6c |$<..all: lmail l| 00000190 72 6e 65 77 73 0a 0a 6c 6d 61 69 6c 3a 20 6c 6d |rnews..lmail: lm| 000001a0 61 69 6c 2e 6f 20 75 70 61 74 68 2e 6f 0a 20 20 |ail.o upath.o. | 000001b0 20 20 20 24 28 43 43 29 20 2d 6f 20 6c 6d 61 69 | $(CC) -o lmai| 000001c0 6c 20 6c 6d 61 69 6c 2e 6f 20 75 70 61 74 68 2e |l lmail.o upath.| 000001d0 6f 0a 20 20 20 20 20 24 28 53 45 54 54 59 50 45 |o. $(SETTYPE| 000001e0 29 0a 0a 6c 72 6e 65 77 73 3a 20 6c 72 6e 65 77 |)..lrnews: lrnew| 000001f0 73 2e 6f 20 75 70 61 74 68 2e 6f 0a 20 20 20 20 |s.o upath.o. | 00000200 20 24 28 43 43 29 20 2d 6f 20 6c 72 6e 65 77 73 | $(CC) -o lrnews| 00000210 20 6c 72 6e 65 77 73 2e 6f 20 75 70 61 74 68 2e | lrnews.o upath.| 00000220 6f 0a 20 20 20 20 20 24 28 53 45 54 54 59 50 45 |o. $(SETTYPE| 00000230 29 0a 0a 6c 6d 61 69 6c 2e 6f 3a 20 6c 6d 61 69 |)..lmail.o: lmai| 00000240 6c 2e 63 20 63 6f 6e 66 69 67 2e 68 20 75 70 61 |l.c config.h upa| 00000250 74 68 2e 68 0a 6c 72 6e 65 77 73 2e 6f 3a 20 6c |th.h.lrnews.o: l| 00000260 72 6e 65 77 73 2e 63 20 63 6f 6e 66 69 67 2e 68 |rnews.c config.h| 00000270 20 75 70 61 74 68 2e 68 0a 75 70 61 74 68 2e 6f | upath.h.upath.o| 00000280 3a 20 75 70 61 74 68 2e 63 20 75 70 61 74 68 2e |: upath.c upath.| 00000290 68 0a 0a 63 6c 65 61 6e 3a 0a 20 20 20 20 72 65 |h..clean:. re| 000002a0 6d 6f 76 65 20 6f 2e 6c 6d 61 69 6c 0a 20 20 20 |move o.lmail. | 000002b0 20 72 65 6d 6f 76 65 20 6f 2e 6c 72 6e 65 77 73 | remove o.lrnews| 000002c0 0a 20 20 20 20 72 65 6d 6f 76 65 20 6f 2e 75 70 |. remove o.up| 000002d0 61 74 68 0a 20 20 20 20 72 65 6d 6f 76 65 20 6c |ath. remove l| 000002e0 6d 61 69 6c 0a 20 20 20 20 72 65 6d 6f 76 65 20 |mail. remove | 000002f0 6c 72 6e 65 77 73 0a 0a 69 6e 73 74 61 6c 6c 3a |lrnews..install:| 00000300 20 6c 6d 61 69 6c 20 6c 72 6e 65 77 73 0a 20 20 | lmail lrnews. | 00000310 20 20 2d 63 6f 70 79 20 6c 6d 61 69 6c 20 5e 2e | -copy lmail ^.| 00000320 62 69 6e 2e 6c 6d 61 69 6c 0a 20 20 20 20 2d 63 |bin.lmail. -c| 00000330 6f 70 79 20 6c 72 6e 65 77 73 20 5e 2e 62 69 6e |opy lrnews ^.bin| 00000340 2e 6c 72 6e 65 77 73 0a |.lrnews.| 00000348