Skip to content
Snippets Groups Projects
Commit d1e523a2 authored by dcw's avatar dcw
Browse files

cc=gcc

parent 7fa7f7b1
No related branches found
No related tags found
No related merge requests found
CC = gcc
#CC = cc
CFLAGS = -g -UDEBUGGING CFLAGS = -g -UDEBUGGING
LINTFLAGS = -UDEBUGGING LINTFLAGS = -UDEBUGGING
EXECS = datadec EXECS = datadec
...@@ -27,10 +29,10 @@ lint_m2datadec: $(m2datadec_srcs) ...@@ -27,10 +29,10 @@ lint_m2datadec: $(m2datadec_srcs)
lint $(LINTFLAGS) $(m2datadec_srcs) >lint_m2datadec 2>&1 lint $(LINTFLAGS) $(m2datadec_srcs) >lint_m2datadec 2>&1
m2datadec: $(m2datadec_objs) m2datadec: $(m2datadec_objs)
cc -g -o m2datadec $(m2datadec_objs) $(CC) -g -o m2datadec $(m2datadec_objs)
datadec: $(datadec_objs) datadec: $(datadec_objs)
cc -g -o datadec $(datadec_objs) $(CC) -g -o datadec $(datadec_objs)
datadec.o: datadec.c struct.h lexer.h parser.h decs.h optimize.h datadec.o: datadec.c struct.h lexer.h parser.h decs.h optimize.h
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment