diff options
Diffstat (limited to 'Tools/CodeTools/Source/Pccts/support/rexpr/makefile')
-rw-r--r-- | Tools/CodeTools/Source/Pccts/support/rexpr/makefile | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/Tools/CodeTools/Source/Pccts/support/rexpr/makefile b/Tools/CodeTools/Source/Pccts/support/rexpr/makefile new file mode 100644 index 0000000000..44caef1aa5 --- /dev/null +++ b/Tools/CodeTools/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
|