CC = g++
CFLAGS = -g -O2 -Wall
TARGET = Plaatom
OBJS = Plaatom.o SelfTerm.o

all:$(TARGET)

$(TARGET):$(OBJS)
	$(CC) -o $@ $(OBJS) $(LIBS)

clean:
	-rm -f $(TARGET) $(OBJS)

.c.o:
	$(CC) $(CFLAGS) -c $<
