home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Borland Programmer's Resource
/
Borland_Programmers_Resource_CD_1995.iso
/
utils
/
source
/
examples
/
ld.mk
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Makefile
|
1995-05-19
|
229 b
|
11 lines
SDK = //C/nt/public/sdk
INC = $(SDK)/inc
CCFLAGS = $(CFLAGS) -I $(INC)/posix -I $(INC)/crt
LDFLAGS = -L $(SDK)/lib/i386
test: test.o test.a
ld -o test $(LDFLAGS) test.o test.a
test.o: test.c
cc -c $(CCFLAGS) test.c