Files
SICP/shared/scm2c/makefile

10 lines
97 B
Makefile

aout: main.o
cc -o aout main.o
main.o : main.c datum.h
cc -c main.c
clean :
rm aout main.o