home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-04-11 | 443 b | 23 lines |
- CC=gcc
- CFLAGS=-O
-
- OBJS= stdmain.obj winproc.obj getfile.obj process.obj
-
- %.obj: %.cc
- $(CC) $(CFLAGS) -c $<
-
- sample3.exe: $(OBJS) sample3.def sample3.res
- gcc $(CFLAGS) $(OBJS) sample3.def -o sample3.exe
- rc sample3.res
-
- stdmain.obj: stdmain.cc
- winproc.obj: winproc.cc
- getfile.obj: getfile.cc
- process.obj: process.cc process.h
-
- sample3.res: sample3.rc sample3.ico
- rc -r sample3
-
- clean:
- del *.obj *.s *.map *.res *.exe
-