home *** CD-ROM | disk | FTP | other *** search
Makefile | 1996-01-07 | 1.0 KB | 44 lines |
- APPVER=4.0
- TARGETOS = WINNT
-
- !include <win32.mak>
-
- all: dlgedit.exe
-
- # Update the resources if necessary
-
- dlgedit.res: dlgedit.rc dlgedit.h
- $(rc) $(rcflags) $(rcvars) dlgedit.rc
-
- dlgedit.exe: addctrl.obj \
- ctrlproc.obj \
- custcntl.obj \
- dialogs.obj \
- dlgedit.obj \
- drag.obj \
- file.obj \
- globals.obj \
- groupdlg.obj \
- include.obj \
- menu.obj \
- reslist.obj \
- restodlg.obj \
- resutil.obj \
- rwdlg.obj \
- rwinc.obj \
- rwres.obj \
- select.obj \
- status.obj \
- styles.obj \
- toolbox.obj \
- util.obj \
- viewinc.obj \
- dlgedit.res
- $(link) $(linkdebug) $(guiflags) -out:$*.exe $** $(guilibs)
- !IF ("$(TARGETLANG)" == "LANG_JAPANESE") && ("$(OS)" == "Windows_NT")
- rlman -p 932 -n 17 1 -a $*.exe $*.tok $*.exe
- !ENDIF
-
- .c.obj:
- $(cc) $(cdebug) $(cflags) $(cvars) -DUNICODE $*.c
-