mirror of
https://github.com/SEPPDROID/Digital-Research-Source-Code.git
synced 2025-10-27 02:14:19 +00:00
Upload
Digital Research
This commit is contained in:
19
ASSEMBLY & COMPILE TOOLS/PLM-2-C 2/avl-subs/Makefile
Normal file
19
ASSEMBLY & COMPILE TOOLS/PLM-2-C 2/avl-subs/Makefile
Normal file
@@ -0,0 +1,19 @@
|
||||
# makefile for tree stuff
|
||||
# vix 24jul87 [stripped down from as makefile]
|
||||
|
||||
CFLAGS = -O
|
||||
|
||||
TRTEST_OBJ = t_trtest.o tree.o
|
||||
|
||||
all : t_trtest
|
||||
|
||||
t_trtest : $(TRTEST_OBJ)
|
||||
cc -o t_trtest $(TRTEST_OBJ)
|
||||
|
||||
clean : FRC
|
||||
rm -f core a.out t_trtest $(TRTEST_OBJ)
|
||||
|
||||
FRC :
|
||||
|
||||
tree.o : tree.c tree.h vixie.h
|
||||
t_trtest.o : t_trtest.c tree.h vixie.h
|
||||
Reference in New Issue
Block a user