home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GEMini Atari
/
GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso
/
files
/
archiver
/
restore
/
makefile
< prev
next >
Wrap
Makefile
|
1988-01-06
|
353b
|
19 lines
# Makefile for RESTORE
CFLAGS=
OBJ=restore.o getopt.o
SRC=restore.c getopt.c
OTHERS=backup
restore: $(OBJ) backup
cc -o restore.prg $(OBJ)
clean:
( rm *.o *.prg ; exit 0 )
# `ct' is the copy-and-preserve-timestamp routine posted last November
backup: $(SRC) $(OTHERS)
( touch backup; exit 0 )
ct -n $? backup d:\src\rest