mirror of
https://github.com/mdbtools/mdbtools.git
synced 2026-03-10 00:20:54 +08:00
Fixups for version 0.1
This commit is contained in:
@@ -19,7 +19,7 @@ LIBS =
|
||||
INSTALL= @INSTALL@
|
||||
|
||||
PROGS = mdb-dump
|
||||
OBJS = dump.o
|
||||
OBJS = dump.o
|
||||
|
||||
all: $(PROGS)
|
||||
|
||||
@@ -31,3 +31,15 @@ mdb-dump: dump.o
|
||||
|
||||
.c.o:
|
||||
$(CC) -g -c $<
|
||||
|
||||
install:
|
||||
@for prog in $(PROGS); do \
|
||||
echo " copying $$prog to $(bindir)"; \
|
||||
cp $$prog $(bindir); \
|
||||
done
|
||||
|
||||
uninstall:
|
||||
@for prog in $(PROGS); do \
|
||||
echo " removing $$prog from $(bindir)"; \
|
||||
rm -f $(bindir)/$$prog; \
|
||||
done
|
||||
|
||||
Reference in New Issue
Block a user