notaz.gp2x.de
/
megadrive.git
/ blame
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(incremental) |
history
|
HEAD
some tests
[megadrive.git]
/
teensytp
/
host
/
Makefile
Commit
Line
Data
932302ef
1
CFLAGS += -Wall -ggdb
2
ifndef DEBUG
3
CFLAGS += -O2
4
endif
5
6
TARGET = main
7
OBJS = main.o
8
9
all: $(TARGET)
10
11
$(TARGET): $(OBJS)
12
$(CC) -o $@ $(CFLAGS) $(LDFLAGS) $^ $(LDLIBS)
13
14
clean:
15
$(RM) $(TARGET) $(OBJS)