Home | History | Annotate | Download | only in genmk
      1 ##

      2 ##  7-Apr-97

      3 ##  added support/genmk/makefile to pccts 1.33MR1 distribution kit

      4 ##		(support/genmk/makefile" omitted from 1.33 distribution kit)

      5 ##

      6 SRC=genmk.c
      7 OBJ=genmk.o
      8 # Define PC if you use a PC OS (changes directory symbol and object file extension)

      9 # see pccts/h/pcctscfg.h

     10 CC=cc
     11 COPT=-O
     12 #CFLAGS=-I../../h -DPC

     13 CFLAGS=$(COPT) -I../../h
     14 BAG=../../bin/bag
     15 
     16 genmk: $(OBJ) $(SRC) ../../h/pcctscfg.h
     17 	$(CC) -o genmk $(OBJ)
     18 
     19 clean:
     20 	rm -rf core *.o
     21 
     22 scrub:
     23 	rm -rf genmk core *.o
     24 
     25 shar:
     26 	shar genmk.c makefile > genmk.shar
     27 
     28 archive:
     29 	$(BAG) genmk.c makefile > genmk.bag
     30