blob: 083a2dcc7c15f43fece2db1612171d47af721af7 (
plain)
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
|
CC=gcc
CFLAGS=-O -g -Wall
LDFLAGS=-g
AR=ar
PREFIX=$(HOME)
PROGRAMS=test-lexing test-parsing obfuscate check compile test-linearize
LIB_H= token.h parse.h lib.h symbol.h scope.h expression.h target.h \
linearize.h bitmap.h ident-list.h
LIB_OBJS= target.o parse.o tokenize.o pre-process.o symbol.o lib.o scope.o \
expression.o show-parse.o evaluate.o expand.o inline.o linearize.o
LIB_FILE= sparse.a
LIBS=$(LIB_FILE)
all: $(PROGRAMS)
#
# Install the 'check' binary as 'sparse', just to confuse people.
#
# "The better to keep you on your toes, my dear".
#
install: check
if test $< -nt $(PREFIX)/bin/sparse ; then install -v $< $(PREFIX)/bin/sparse ; fi
test-lexing: test-lexing.o $(LIB_FILE)
gcc $(LDFLAGS) -o $@ $< $(LIBS)
test-parsing: test-parsing.o $(LIB_FILE)
gcc $(LDFLAGS) -o $@ $< $(LIBS)
test-linearize: test-linearize.o $(LIB_FILE)
gcc $(LDFLAGS) -o $@ $< $(LIBS)
compile: compile.o compile-i386.o $(LIB_FILE)
gcc $(LDFLAGS) -o $@ $< compile-i386.o $(LIBS)
obfuscate: obfuscate.o $(LIB_FILE)
gcc $(LDFLAGS) -o $@ $< $(LIBS)
check: check.o $(LIB_FILE)
gcc $(LDFLAGS) -o $@ $< $(LIBS)
$(LIB_FILE): $(LIB_OBJS)
$(AR) rcs $(LIB_FILE) $(LIB_OBJS)
evaluate.o: $(LIB_H)
expression.o: $(LIB_H)
lib.o: $(LIB_H)
parse.o: $(LIB_H)
pre-process.o: $(LIB_H) pre-process.h
scope.o: $(LIB_H)
show-parse.o: $(LIB_H)
symbol.o: $(LIB_H)
expand.o: $(LIB_H)
linearize.o: $(LIB_H)
inline.o: $(LIB_H)
target.o: $(LIB_H)
test-lexing.o: $(LIB_H)
test-parsing.o: $(LIB_H)
test-linearize.o: $(LIB_H)
compile.o: $(LIB_H) compile.h
compile-i386.o: $(LIB_H) compile.h
tokenize.o: $(LIB_H)
check.o: $(LIB_H)
obfuscate.o: $(LIB_H)
pre-process.h:
echo "#define GCC_INTERNAL_INCLUDE \"`$(CC) -print-file-name=include`\"" > pre-process.h
clean:
rm -f *.[oasi] core core.[0-9]* $(PROGRAMS) pre-process.h
|