1 CC = /usr/bin/gcc 2 STRIP = /usr/bin/strip 3 CCDOS = /usr/bin/gcc-dos 4 STRIPDOS = /usr/bin/strip-dos 5 GCCARGS = -funroll-loops -pedantic -Wall -ansi 6 7 all: bin exe stripbin stripexe 8 norm: bin stripbin 9 dos: exe stripexe 10 exe: 11 $(CCDOS) $(GCCARGS) -o vmpu.exe vmpu.c $(CMD) 12 bin: 13 $(CC) $(GCCARGS) -o vmpu vmpu.c $(CMD) 14 stripbin: 15 $(STRIP) vmpu 16 stripexe: 17 $(STRIPDOS) vmpu.exe Makefile is the makefile, used for GNU `make' |