Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
Duncan White
C-datadec
Commits
dbd42c58
Commit
dbd42c58
authored
Jan 27, 1994
by
ees1dw
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initial revision
parent
b874c09d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
41 additions
and
0 deletions
+41
-0
Makefile
Makefile
+41
-0
No files found.
Makefile
0 → 100644
View file @
dbd42c58
INC
=
/vol/lab/include
CFLAGS
=
-I
$(INC)
-g
-UDEBUGGING
LINTFLAGS
=
-I
$(INC)
-UDEBUGGING
EXECS
=
datadec m2datadec
datadec_srcs
=
datadec.c parser.c lexer.c struct.c decs.c optimize.c
datadec_objs
=
datadec.o parser.o lexer.o struct.o decs.o optimize.o
m2datadec_srcs
=
datadec.c parser.c lexer.c struct.c m2decs.c optimize.c
m2datadec_objs
=
datadec.o parser.o lexer.o struct.o m2decs.o optimize.o
all
:
$(EXECS)
arch
:
$(EXECS)
cp
-p
$(EXECS)
../../
$(ARCH)
cd
../../
$(ARCH)
;
chmod
a+rx,ug+w
$(EXECS)
clean
:
/bin/rm
-f
*
.o a.out core
$(EXECS)
lint
:
lint_datadec lint_m2datadec
lint_datadec
:
$(datadec_srcs)
lint
$(LINTFLAGS)
$(datadec_srcs)
>
lint_datadec 2>&1
lint_m2datadec
:
$(m2datadec_srcs)
lint
$(LINTFLAGS)
$(m2datadec_srcs)
>
lint_m2datadec 2>&1
m2datadec
:
$(m2datadec_objs)
cc
-g
-o
m2datadec
$(m2datadec_objs)
datadec
:
$(datadec_objs)
cc
-g
-o
datadec
$(datadec_objs)
datadec.o
:
parser.h lexer.h struct.h optimize.h datadec.c
parser.o
:
lexer.h struct.h parser.h parser.c
lexer.o
:
lexer.h lexer.c
struct.o
:
struct.h struct.c
decs.o
:
decs.h decs.c
m2decs.o
:
decs.h m2decs.c
optimize.o
:
optimize.h struct.h optimize.c
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment