home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
The Datafile PD-CD 2
/
DATAFILE_PDCD2.iso
/
utilities2
/
desklib
/
Docs
/
Blanks
/
Makefile
< prev
Wrap
Makefile
|
1993-03-27
|
594b
|
29 lines
# Project: Empty_Make_File
#
# To use this makefile, simply fill in the 'Files' list, and change the
# two occurences below of the word 'Target' with the name of the file you
# wish to create out the other end.
#
.SUFFIXES: .c .o
CC = cc
CCflags = -c -throwback -IDeskLib:,C:
Linkflags = -o $@
LibFileflags = -c -o $@
Files = o.thefile o.otherfile
# Final targets:
all: Target
Target: $(Files)
Create $@ 1
# LibFile $(LibFileFlags) @.o.*
|=== Icon SubLibrary up to date
.c.o:; $(CC) $(CCflags) $< -o $@
# User-editable dependencies: