blob: a4c4e89389e0c903a7ede3d3a3df370e96a53656 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
--- ../../work/cocktail-9309//./puma/ffaba-c/Makefile Tue Feb 15 14:26:16 1994
+++ ./puma/ffaba-c/Makefile Wed Mar 31 22:35:05 2004
@@ -1,13 +1,9 @@
-LIB = $(HOME)/lib
-INCDIR = $(LIB)/include
-CFLAGS = -I$(INCDIR)
-CC = cc -O
all: main
time main
main: ProTest.o Compiler.o
- cc -o main Compiler.o ProTest.o $(LIB)/libreuse.a
+ $(CC) -o main Compiler.o ProTest.o $(LIB)/libreuse.a
ProTest.o: ProTest.h
Compiler.o: ProTest.h
@@ -24,5 +20,5 @@
clean:
rm -f core Compiler.* ProTest.* yy*.w main
-.c.o:
- $(CC) $(CFLAGS) -c $*.c;
+.include "../../Makefile.inc"
+
|