Files
Digital-Research-Source-Code/CPM OPERATING SYSTEMS/CPM 68K/cpm68k_pgms/sdbas/MAKEFILE.UNX
Sepp J Morris 31738079c4 Upload
Digital Research
2020-11-06 18:50:37 +01:00

1 line
768 B
Plaintext
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

SRC = cmd.c com.c cre.c err.c iex.c int.c io.c junk.c mth.c pcjunk.c \
scn.c sdb.c sel.c srt.c tbl.c
OBJ = cmd.o com.o cre.o err.o iex.o int.o io.o junk.o mth.o \
scn.o sdb.o sel.o srt.o tbl.o
HDR = sdbio.h
FILES = aaareadme.txt readme readme.too sdb.hlp sdb.lnk sdb.mem
all: sdb
sdb: $(OBJ)
cc $(CFLAGS) $(OBJ) -o sdb
cmd.o: cmd.c sdbio.h
com.o: com.c sdbio.h
cre.o: cre.c sdbio.h
err.o: err.c sdbio.h
iex.o: iex.c sdbio.h
int.o: int.c sdbio.h
io.o: io.c sdbio.h
junk.o: junk.c sdbio.h
mth.o: mth.c
pcjunk.o: pcjunk.c sdbio.h
scn.o: scn.c sdbio.h
sdb.o: sdb.c sdbio.h
sel.o: sdbio.h sel.c
srt.o: sdbio.h srt.c
tbl.o: sdbio.h tbl.c