home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-05-24 | 617 b | 23 lines |
- # PopUp Server
-
- .SUFFIXES: .c .o
- CC = cc
- CCflags = -c -throwback -Ff -IDeskLib:,C:
- LinkFlags = -o $@
-
- Libraries = C:o.Stubs C:o.DeskLib
- Files = o.Error o.HandlerTab o.Server o.Template o.Wimp
-
-
- # Add your own PopUp handlers into the project by adding their names
- # in the list below. You should not need to change the rest of the MakeFile
-
- PopUps = o._Magnify o._Print o._ProgInfo o._Report o._SaveAs o._WimpCol
-
-
- !RunImage: $(Files) $(PopUps)
- link $(LinkFlags) $(Files) $(PopUps) $(Libraries)
- squeeze -v -f !RunImage
-
- .c.o:; $(CC) $(CCflags) $< -o $@
-