From 6a90d13fc041b15402384fe0c03ad5882188a56d Mon Sep 17 00:00:00 2001 From: Ernedin Zajko Date: Mon, 18 Nov 2019 16:05:34 +0100 Subject: [PATCH] cleaning drivers... --- drivers/builddev.bat | 4 ---- drivers/makefile.dj | 26 -------------------------- drivers/makefile.dj2 | 35 ----------------------------------- 3 files changed, 65 deletions(-) delete mode 100755 drivers/builddev.bat delete mode 100755 drivers/makefile.dj delete mode 100755 drivers/makefile.dj2 diff --git a/drivers/builddev.bat b/drivers/builddev.bat deleted file mode 100755 index 10ea22b..0000000 --- a/drivers/builddev.bat +++ /dev/null @@ -1,4 +0,0 @@ -rem -rem This is another variant on building with djgpp.... -rem -make -f makefile.dj2 DEVICES="-DPOSTSCRIPT -DHPGL -DGRX" MCFLAGS=-g2 DOBJS="../drivers/ps.o ../drivers/hpdxy.o ../drivers/grx.o" RANLIB=ranlib diff --git a/drivers/makefile.dj b/drivers/makefile.dj deleted file mode 100755 index 5d93066..0000000 --- a/drivers/makefile.dj +++ /dev/null @@ -1,26 +0,0 @@ -CC = gcc - -MCFLAGS = -O2 -DEVICES=-DPOSTSCRIPT -DHPGL -DGRX -HDRS= ../src/vogl.h - -DOBJS = grx.o ps.o hpdxy.o - -CFLAGS= -I../src $(MCFLAGS) - -.SUFFIXES: .o .c .cc .s - -.c.o: - $(CC) -c $(CFLAGS) $*.c - -all: $(DOBJS) - -clean: - del *.o - -clobber: - del *.o - -install: - - diff --git a/drivers/makefile.dj2 b/drivers/makefile.dj2 deleted file mode 100755 index df6c24f..0000000 --- a/drivers/makefile.dj2 +++ /dev/null @@ -1,35 +0,0 @@ -# -# Makefile for LIBGRX devices for the DJGPP compiler -# note: -O2 will mess with the asm code in grx.c -# - -CC = gcc -RANLIB=ranlib - -MCFLAGS = -DEVICES=-DPOSTSCRIPT -DHPGL -DGRX -HDRS= ../src/vogl.h - -DOBJS = grx.o ps.o hpdxy.o - -CFLAGS= -I../src $(MCFLAGS) - -.SUFFIXES: .o .c .cc .s - -.c.o: - $(CC) -c $(CFLAGS) $*.c - -all: depend $(DOBJS) - -depend: $(CSRC) - $(CC) $(CFLAGS) -M $(CSRC) > depend - -# $(DOBJS): $(HDRS) - -clean: - rm -f core $(DOBJS) - -clobber: - rm -f core *.o - -#include depend