home *** CD-ROM | disk | FTP | other *** search
Makefile | 1992-02-18 | 421 b | 25 lines |
- # makefile for DJGPP
- #
- # Tested with DJGPP v1.05 and GNU make (works with tc make too)
- #
- # W. Metzenthen 14th feb 1992
- #
-
- SHELL = command.com
-
-
- CC = gcc
- OBJS = test2.o
- DEBUG =
- CFLAGS = -O $(DEBUG) -D__MSDOS__
-
- test2.exe: $(OBJS)
- $(CC) $(DEBUG) -o $* $(OBJS)
- strip $*
- copy /b e:\gnu\bin\stub.exe+$* $*.exe > con
- rm -f $*
-
-
- test2.o: test2.c
- $(CC) -c $(CFLAGS) $(CPPFLAGS) test2.c -o test2.o
-