home *** CD-ROM | disk | FTP | other *** search
- # Custom make file generated by makemak for makemak.exe
- # This is the make file I used to compile the makemak program
-
- target = makemak.exe
- cc = cl
- c_opts = /AS /Ox
- cdefs =
- mc = masm
- m_opts =
- mdefs =
- link = link
- l_opts =
- lmap = NUL
- libs = sutil
- HDRS = makemak.h
- SRCS = mak_cfg.c mak_help.c makemak.c
- OBJS = mak_cfg.obj mak_help.obj makemak.obj
-
-
- mak_cfg.obj: mak_cfg.c makemak.h
- $(CC) $(C_OPTS) $(CDEFS) mak_cfg.c
-
- mak_help.obj: mak_help.c
- $(CC) $(C_OPTS) $(CDEFS) mak_help.c
-
- makemak.obj: makemak.c makemak.h
- $(CC) $(C_OPTS) $(CDEFS) makemak.c
-
- $(TARGET): $(OBJS) $(SRCS) $(HDRS)
- $(LINK) $(L_OPTS) $(OBJS), $(TARGET), $(LMAP), $(LIBS);
- exepack $(TARGET) $*.asd
- erase $(TARGET)
- rename $*.asd $*.exe
- # The above three lines are some of the few lines I add by hand since
- # they are the last things usually done to a program.
-
-