1
0
mirror of https://github.com/fachat/xa65.git synced 2024-06-01 22:41:32 +00:00
xa65/xa/src/Makefile
2011-12-16 23:04:51 +01:00

19 lines
285 B
Makefile

OBJ = xa.o xaa.o xal.o xap.o xat.o xar.o xar2.o xao.o xau.o xam.o xacharset.o
#CFLAGS=-W -Wall -pedantic -ansi #-g
#CFLAGS=-W -Wall -ansi -O2
#LD = ${CC}
#LDFLAGS = "-lc"
all: xa
xa: ${OBJ}
${LD} -o ../xa ${OBJ} ${LDFLAGS}
clean:
rm -f *.o *.o65
mrproper: clean
rm -f ../xa