Mail Archives: djgpp-workers/1997/09/29/06:00:54
# There are some major problems with the new make 3.76.1
#
# Please try the makefile below (from Allegro).
# Then remove the space beetween 'badtarget' and ':'.
# Then try to make the PHONY target echo something.
#
# Very strange.
#
# Markus
ifdef DJDIR
TARGET = djgpp
else
TARGET = linux
endif
ifeq ($(TARGET),djgpp)
else
ifeq ($(TARGET),linux)
else
.PHONY : badtarget
badtarget :
@echo Error: target operating system not set properly.
@echo Fix the makefile, or run make djgpp or make linux.
endif
endif
- Raw text -