#
# Makefile of ./src subdirectory
#
.PHONY: all
all: nrm intnum

nrm: nrm.pas
	fpc nrm.pas

intnum: intnum.pas
	fpc intnum.pas

.PHONY: clean
clean:
	rm -f *~ *.ppu *.o

.PHONY: distclean
distclean: clean
	rm -f nrm intnum
