mirror of
https://github.com/deater/dos33fsprogs.git
synced 2024-11-04 05:05:13 +00:00
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) $(CFLAGS) -c asoft_presenter.c
|
|
|
|
|
|
install:
|
|
cp asoft_presenter $(INSTALL_LOC)
|
|
|
|
clean:
|
|
rm -f *~ *.o asoft_presenter
|
|
|
|
|
|
|