8 lines
80 B
Makefile
8 lines
80 B
Makefile
.SUFFIXES: .o .e .c
|
|
|
|
.e.o:
|
|
$(CC) $(CFLAGS) -c -o $@ $*.e
|
|
|
|
clean:
|
|
rm -rf OLIST
|