# Makefile for TrivialBasic # these two should be changed for permanent installation # otherwise this only works in the directory where it's built BPP="./bpp" # preprocessor path INC="." # location of basic.h # these should be ok as they are CC="cc" # C compiler EXE="./b.out" # temporary executable all: bpp basic basic: basic.c cc -DCC='$(CC)' -DBPP='$(BPP)' -DEXE='$(EXE)' -DINC='$(INC)' -o $@ $?