home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
OS/2 Shareware BBS: 10 Tools
/
10-Tools.zip
/
viscobv6.zip
/
vac22os2
/
ibmcobol
/
samples
/
toolkit
/
pm
/
palette
/
palette.mak
< prev
next >
Wrap
Makefile
|
1996-11-19
|
2KB
|
69 lines
#===================================================================
#
# PALETTE.MAK - Palette Application Make file
# Copyright IBM Corporation 1996
#
#===================================================================
#===================================================================
# Include the file ibmsamp.inc which defines the various macros
# depending on the target specified.
#
# The following macros are defined in ibmsamp.inc:
#
# OBJDIR - Directory where object files are created
# EXEDIR - Directory where executable files are created
# RC - Resource compiler
# RCFLAGS - Resource compiler flags
# LINK - Linker
# LFLAGS - Linker flags
# MTLIBS - Multithreaded versions of the runtime libraries
#===================================================================
!include ..\..\ibmsamp.inc
HEADERS = palette.h
ALL_IPF = palette.ipf
#-------------------------------------------------------------------
#
# A list of all of the object files
#
#-------------------------------------------------------------------
OBJS = $(OBJDIR)\palette.obj
#-------------------------------------------------------------------
# This section lists all files to be built by make. The
# makefile builds the executable as well as its associated help
# file.
#-------------------------------------------------------------------
all: $(EXEDIR)\palette.exe $(EXEDIR)\palette.hlp
#-------------------------------------------------------------------
# Dependencies
# This section lists all object files needed to be built for the
# application, along with the files it is dependent upon (e.g.
# its source and any header files).
#-------------------------------------------------------------------
$(OBJDIR)\palette.res: $(HEADERS) palette.rc palette.ico prodinfo.bmp
$(RC) $(RCFLAGS) $(@B).rc $@
@del prodinfo.bmp
prodinfo.bmp :
copy ..\..\prodinfo.bmp $@
$(EXEDIR)\palette.hlp: $(ALL_IPF)
$(OBJDIR)\palette.obj: palette.c $(HEADERS)
$(EXEDIR)\palette.exe: $(OBJS) $(@B).def $(OBJDIR)\$(@B).res
-$(CREATE_PATH)
$(LINK) $@ $(@B).def $(MTLIBS) $(OBJS)
$(RC) -p -x $(OBJDIR)\$(@B).res $@
clean :
@if exist *.obj del *.obj
@if exist *.dll del *.dll
@if exist *.exe del *.exe