mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-11-04 05:05:13 +00:00
2305c15ee4
sorry anyone who was maintaining patches against this or had hardcoded paths
21 lines
309 B
Makefile
21 lines
309 B
Makefile
include ../Makefile.inc
|
|
|
|
all: asoft_presenter
|
|
|
|
|
|
asoft_presenter: asoft_presenter.o
|
|
$(CC) $(LFLAGS) -o asoft_presenter asoft_presenter.o
|
|
|
|
asoft_presenter.o: asoft_presenter.c
|
|
$(CC) $(CLFAGS) -c asoft_presenter.c
|
|
|
|
|
|
install:
|
|
cp asoft_presenter $(INSTALL_LOC)
|
|
|
|
clean:
|
|
rm -f *~ *.o asoft_presenter
|
|
|
|
|
|
|