mirror of
https://github.com/mdbtools/mdbtools.git
synced 2026-03-10 00:20:54 +08:00
17 lines
153 B
Makefile
17 lines
153 B
Makefile
|
|
CC = gcc
|
|
|
|
PROGS = mdb-dump
|
|
OBJS = dump.o
|
|
|
|
all: $(PROGS)
|
|
|
|
clean:
|
|
rm -f core *.o $(PROGS)
|
|
|
|
mdb-dump: dump.o
|
|
$(CC) -g -o $@ $<
|
|
|
|
.c.o:
|
|
$(CC) -g -c $<
|