mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-12-25 20:30:31 +00:00
26 lines
410 B
Makefile
26 lines
410 B
Makefile
|
include ../Makefile.inc
|
||
|
|
||
|
all: pcx2hgr shape_table
|
||
|
|
||
|
|
||
|
shape_table: shape_table.o
|
||
|
$(CC) $(LFLAGS) -o shape_table shape_table.o
|
||
|
|
||
|
shape_table.o: shape_table.c
|
||
|
$(CC) $(CFLAGS) -c shape_table.c
|
||
|
|
||
|
pcx2hgr: pcx2hgr.o
|
||
|
$(CC) $(LFLAGS) -o pcx2hgr pcx2hgr.o
|
||
|
|
||
|
pcx2hgr.o: pcx2hgr.c
|
||
|
$(CC) $(CFLAGS) -c pcx2hgr.c
|
||
|
|
||
|
|
||
|
install:
|
||
|
cp pcx2hgr shape_table $(INSTALL_LOC)
|
||
|
|
||
|
clean:
|
||
|
rm -f *~ *.o pcx2hgr shape_table
|
||
|
|
||
|
|