1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
###########################################################
# @(#) Makefile fuer DJGPP-Cross-Compiler (mit gcc-go32)
# @(#) Dirk Hagedorn, 26.12.1998
###########################################################
CC = gcc-go32
O=.o
X=
CFLAGS = -O2 -Wall -D__MSDOS__ $(XCFLAGS)
#CFLAGS = -g -O2 -D__MSDOS__ \
#-Wall -Wstrict-prototypes -Wmissing-prototypes -Wmissing-declarations \
#-Wshadow -Wwrite-strings -Wbad-function-cast -Wcast-qual \
#-Wconversion -pedantic
LDFLAGS =
include makefile.in
udo$(X): $(OSRC) cli$(O)
$(CC) $(CFLAGS) $(OSRC) cli$(O) $(LDFLAGS) $(XLDFLAGS) -o $@
|