X-Git-Url: https://pd.if.org/git/?p=pccts;a=blobdiff_plain;f=support%2Frexpr%2Fmakefile;fp=support%2Frexpr%2Fmakefile;h=c0f343e02da284ebd8799aa7bc4253519b41b985;hp=0000000000000000000000000000000000000000;hb=56dd00148e59773742903ee71be791eaa49a8616;hpb=cb15b978c765a661bf3154d865fa3e2401d649f5 diff --git a/support/rexpr/makefile b/support/rexpr/makefile new file mode 100755 index 0000000..c0f343e --- /dev/null +++ b/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