5752143 [rkeene@sledge /home/rkeene/devel/old/vmpu]$ cat -n Makefile
 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'
5752144 [rkeene@sledge /home/rkeene/devel/old/vmpu]$

Click here to go back to the directory listing.
Click here to download this file.
last modified: 1999-07-13 06:19:52