URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
[/] [eco32/] [trunk/] [sim/] [getline/] [Makefile] - Rev 91
Go to most recent revision | Compare with Previous | Blame | View Log
## Makefile for the getline library#CC = gcc -m32CFLAGS = -O -DPOSIXLDFLAGS = -L.LDLIBS = -lgetline.PHONY: all install cleanall: libgetline.a testglinstall: libgetline.a testgltestgl: libgetline.a testgl.o$(CC) $(LDFLAGS) $(CFLAGS) -o testgl testgl.o $(LDLIBS)libgetline.a: getline.oar cr libgetline.a getline.o%.o: %.c$(CC) $(CFLAGS) -o $@ -c $<clean:rm -f *~ *.o *.a testgl
Go to most recent revision | Compare with Previous | Blame | View Log
