mirror of
https://github.com/ringtailsoftware/uvm32.git
synced 2026-06-05 22:43:39 +00:00
16 lines
242 B
Makefile
16 lines
242 B
Makefile
OBJS=GLView.o
|
|
INCLUDES = -I../include
|
|
LIB = libGLView.a
|
|
|
|
all: $(LIB)
|
|
|
|
$(LIB): $(OBJS)
|
|
rm -f $(LIB)
|
|
ar rcs $(LIB) $(OBJS)
|
|
cp $(LIB) ../lib
|
|
|
|
clean:
|
|
rm -f *~ *.o *.a
|
|
|
|
GLView.o: GLView.cpp GLView.h
|
|
$(CC) $(CFLAGS) $(INCLUDES) -c GLView.cpp
|