
CC = gcc
CFLAGS = -Wall -O2
EXES = advdis ptrload ptrdump

RM = rm -f
# for DRDOS, RM = xdel /n

all:	$(EXES)

clean:
	$(RM) $(EXES)
