home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-06-03 | 538 b | 19 lines |
- # Project: Widget5
-
- .SUFFIXES: .c .o
- CC = cc
- CCFlags = -c -fussy -throwback -IC: -Ff
- LinkFlags = -o $@
- SqueezeFlags = -f -v
-
- Files = o.Error o.Widget5 o.SpriteWin o.Create o.Misc o.LoadSave o.ATrans o.CheckBanks o.ProcessWin o.Configure o.Process o.Filter o.GraphWin o.MixWin o.GreyEdWin
-
- Libs = C:o.HackLib C:o.DeskLib C:o.Stubs
-
-
- !RunImage: $(Files)
- link $(LinkFlags) $(Files) $(Libs)
- squeeze $(SqueezeFlags) !RunImage
-
- .c.o:; $(CC) $(CCflags) $< -o $@
-