home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-06-15 | 418 b | 25 lines |
- SourceDir = /home/sioux/collab/Source
- DestDir = /home/sioux/collab/Applications
-
- GetOptSourceDir = $(SourceDir)/GetOpt
- BrowseSourceDir = $(SourceDir)/Browse
- NetworkSourceDir = $(SourceDir)/NetworkProtocol
-
- CC = gcc -traditional
- OBJECTS = getopt.o
- SOURCES = getopt.c
- CFLAGS = -g -c
-
- all: $(OBJECTS)
-
- install: $(PROGRAM)
- echo "No installation necessary"
-
- clean:
- $(RM) *.o core *~ TAGS
-
- tags:
- etags -t *.[ch]
-
-
-