mirror of
https://github.com/uffejakobsen/acme.git
synced 2024-11-26 15:49:18 +00:00
b2afe0d5f4
now including a converter for "VisAss". git-svn-id: https://svn.code.sf.net/p/acme-crossass/code-0/trunk@60 4df02467-bbd4-4a76-a152-e7ce94205b78
63 lines
1.5 KiB
Makefile
63 lines
1.5 KiB
Makefile
CFLAGS = -Wall -s -Wstrict-prototypes
|
|
#LIBS = -lm
|
|
CC = gcc
|
|
RM = rm
|
|
|
|
#SRC =
|
|
|
|
PROGS = toacme
|
|
#BINDIR = /usr/local/bin
|
|
#USERBIN = $(HOME)/bin
|
|
|
|
all: $(PROGS)
|
|
|
|
vis.o: config.h acme.h io.h mnemo.h scr2iso.h vis.c
|
|
|
|
ab3.o: config.h ab.h acme.h io.h mnemo.h scr2iso.h ab3.c
|
|
|
|
ab.o: config.h ab.h acme.h io.h scr2iso.h ab.c
|
|
|
|
f8ab.o: config.h ab.h acme.h io.h mnemo.h scr2iso.h f8ab.c
|
|
|
|
giga.o: config.h acme.h gighyp.h io.h mnemo.h pet2iso.h giga.c
|
|
|
|
gighyp.o: config.h acme.h io.h pet2iso.h gighyp.h gighyp.c
|
|
|
|
hypra.o: config.h acme.h gighyp.h io.h pet2iso.h hypra.c
|
|
|
|
obj.o: config.h acme.h io.h mnemo.h obj.c
|
|
|
|
acme.o: config.h acme.h acme.c
|
|
|
|
main.o: config.h version.h main.c
|
|
|
|
mnemo.o: config.h mnemo.c
|
|
|
|
pet2iso.o: config.h pet2iso.h pet2iso.c
|
|
|
|
platform.o: config.h platform.h platform.c
|
|
|
|
scr2iso.o: config.h scr2iso.h scr2iso.c
|
|
|
|
version.o: config.h version.c
|
|
|
|
toacme: vis.o ab.o ab3.o acme.o f8ab.o giga.o gighyp.o hypra.o io.o main.o mnemo.o obj.o pet2iso.o platform.o scr2iso.o version.o
|
|
$(CC) $(LIBS) $(CFLAGS) -o toacme.out vis.o ab.o ab3.o acme.o f8ab.o giga.o gighyp.o hypra.o io.o main.o mnemo.o obj.o pet2iso.o platform.o scr2iso.o version.o
|
|
copy /b \djgpp\bin\pmodstub.exe + toacme.out toacme_p.exe
|
|
djp toacme.exe
|
|
djp toacme_p.exe
|
|
|
|
clean:
|
|
del *.o
|
|
# -$(RM) -f *.o $(PROGS) *~ core
|
|
|
|
#install: all
|
|
# install -d $(BINDIR)
|
|
# install $(PROGS) $(BINDIR)
|
|
|
|
#userinstall: all
|
|
# install -d $(USERBIN)
|
|
# install $(PROGS) $(USERBIN)
|
|
|
|
# DO NOT DELETE
|