13 lines
156 B
Makefile
13 lines
156 B
Makefile
# Tell emacs that this is a -*- makefile -*-
|
|
|
|
include ../tests.mk
|
|
|
|
PRGS:= $(wildcard *.PRG)
|
|
|
|
OBJS= $(PRGS:.PRG=.o)
|
|
EXES= $(PRGS:.PRG=.exe)
|
|
|
|
all: $(EXES)
|
|
|
|
|