home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-08-15 | 632 b | 29 lines |
- #--------------------
- # edit make file
- #--------------------
-
- CC=gcc
- #CFLAGS=-c -O -Zomf
- CFLAGS=-c -Zomf
-
- OBJS= edit.obj efile.obj edlg.obj
-
- edit32.exe : $(OBJS) edit.def edit.res edit.hlp
- $(CC) -Zsys -Zomf -o edit32.exe $(OBJS) edit.def edit.res
- # LINK386 /DE $(OBJS), edit32.exe,,os2.lib c.lib sysst.lib gcc.lib,edit.def
-
- edit.hlp : edit.ipf
- ipfc edit.ipf
-
- edit.obj : edit.c edit.h
- $(CC) $(CFLAGS) edit.c
-
- efile.obj : efile.c edit.h
- $(CC) $(CFLAGS) efile.c
-
- edlg.obj : edlg.c edit.h
- $(CC) $(CFLAGS) edlg.c
-
- edit.res : edit.rc edit.h edit.ico
- rc -r edit.rc
-