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