Skip to content

Commit bc14da8

Browse files
committed
initial import
0 parents  commit bc14da8

File tree

8 files changed

+3819
-0
lines changed

8 files changed

+3819
-0
lines changed

Makefile

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
CFLAGS := -O3 $(shell sdl-config --cflags)
3+
LIBS := $(shell sdl-config --libs) -lSDL_gfx
4+
OBJECTS := e6809.o osint.o vecx.o
5+
TARGET := vecx
6+
CLEANFILES := $(TARGET) $(OBJECTS)
7+
8+
$(TARGET): $(OBJECTS)
9+
gcc $(CFLAGS) -o $@ $^ $(LIBS)
10+
11+
clean:
12+
$(RM) $(CLEANFILES)
13+

0 commit comments

Comments
 (0)