summaryrefslogtreecommitdiff
path: root/Tools/CCode/Source/Pccts/support/rexpr/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Tools/CCode/Source/Pccts/support/rexpr/makefile')
-rw-r--r--Tools/CCode/Source/Pccts/support/rexpr/makefile19
1 files changed, 19 insertions, 0 deletions
diff --git a/Tools/CCode/Source/Pccts/support/rexpr/makefile b/Tools/CCode/Source/Pccts/support/rexpr/makefile
new file mode 100644
index 0000000000..44caef1aa5
--- /dev/null
+++ b/Tools/CCode/Source/Pccts/support/rexpr/makefile
@@ -0,0 +1,19 @@
+BAG=../../bin/bag
+SRC=test.c rexpr.c
+OBJ=test.o rexpr.o
+CFLAGS = -g
+
+test: $(OBJ) $(SRC)
+ cc -g -o texpr $(OBJ)
+
+shar:
+ shar makefile test.c rexpr.c rexpr.h > rexpr.shar
+
+archive:
+ $(BAG) makefile test.c rexpr.c rexpr.h > rexpr.bag
+
+clean:
+ rm -rf *.o core texpr
+
+scrub:
+ rm -rf *.o core texpr