It seems that it was a mistake to OR the LFB flag to the video mode
[dosdemo] / libs / anim / Makefile.dj
diff --git a/libs/anim/Makefile.dj b/libs/anim/Makefile.dj
deleted file mode 100644 (file)
index e73b990..0000000
+++ /dev/null
@@ -1,30 +0,0 @@
-src = $(wildcard src/*.c)
-obj = $(src:.c=.cof)
-alib = anim.dja
-
-ifeq ($(findstring COMMAND.COM, $(SHELL)), COMMAND.COM)
-       hostsys = dos
-else
-       hostsys = unix
-       TOOLPREFIX = i586-pc-msdosdjgpp-
-endif
-
-CC = $(TOOLPREFIX)gcc
-AR = $(TOOLPREFIX)ar
-CFLAGS = -Wno-main -march=pentium -g -O3 -ffast-math -I.. -I../../src
-
-$(alib): $(obj)
-       $(AR) rcs $@ $(obj)
-
-%.cof: %.c
-       $(CC) $(CFLAGS) -o $@ -c $<
-
-.PHONY: clean
-ifeq ($(hostsys), dos)
-clean:
-       del src\*.cof
-       del $(alib)
-else
-clean:
-       rm -f $(obj) $(alib)
-endif