Source release of qcc and the qutils, updated long ago to be GPL.

This commit is contained in:
Travis Bradshaw
2012-01-31 15:55:08 -06:00
parent e4cb063480
commit c0d1b91c74
51 changed files with 23473 additions and 0 deletions

28
qcc/makefile Normal file
View File

@@ -0,0 +1,28 @@
CFLAGS = -g -Wall
EXES = qcc
all: $(EXES)
install:
make app
cp $(EXES) /LocalApps
app:
make "CFLAGS = -O4 -g -Wall -arch i386 -arch hppa"
debug:
make "CFLAGS = -g -Wall"
profile:
make "CFLAGS = -pg -Wall"
clean:
rm -f *.o $(EXES)
.c.o: ; cc -c $(CFLAGS) -o $@ $*.c
QCCFILES = qcc.o pr_lex.o pr_comp.o cmdlib.o
qcc : $(QCCFILES)
cc $(CFLAGS) -o qcc $(QCCFILES)