Skip to content

Commit

Permalink
initial import
Browse files Browse the repository at this point in the history
  • Loading branch information
jhawthorn committed Dec 23, 2009
0 parents commit bc14da8
Show file tree
Hide file tree
Showing 8 changed files with 3,819 additions and 0 deletions.
13 changes: 13 additions & 0 deletions Makefile
@@ -0,0 +1,13 @@

CFLAGS := -O3 $(shell sdl-config --cflags)
LIBS := $(shell sdl-config --libs) -lSDL_gfx
OBJECTS := e6809.o osint.o vecx.o
TARGET := vecx
CLEANFILES := $(TARGET) $(OBJECTS)

$(TARGET): $(OBJECTS)
gcc $(CFLAGS) -o $@ $^ $(LIBS)

clean:
$(RM) $(CLEANFILES)

0 comments on commit bc14da8

Please sign in to comment.