home *** CD-ROM | disk | FTP | other *** search
Makefile | 1992-05-18 | 589 b | 42 lines |
- #
- # M A K E F I L E
- # ---------------
- #
- # Description:
- # Compiles and links CForms example
- #
- # $Log: Makefile,v $
- # Revision 1.2 92/01/19 13:21:05 lasse
- # better clean
- #
- # Revision 1.1 92/01/19 12:48:47 lasse
- # Initial revision
- #
- #
- #
-
- #
- # Installation places.
- #
-
- COMP = ../bin/cfc
- OS = SYSV
-
- INCLUDE = ../src
- LIBDIR = ../lib
- LIBS = -lcforms -lcurses
- OFILES = cforms.o
-
- CFLAGS = -g -DSYS_$(OS) -I$(INCLUDE)
-
- cforms : $(OFILES)
- $(CC) -o cforms $(OFILES) -L$(LIBDIR) $(LIBS)
-
- install:
-
- clean:
- rm -f cforms.o cforms cforms.c
-
- cforms.c : test.frm
- $(COMP) test.frm
-