projects
/
wine
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Release 0.5
[wine]
/
memory
/
Makefile
1
CFLAGS=$(COPTS) $(DEBUGOPTS) -I$(INCLUDE_DIR)
2
3
OBJS=global.o heap.o atom.o
4
5
default: memory.o
6
7
memory.o: $(OBJS)
8
$(LD) -r -o memory.o $(OBJS)
9
10
clean:
11
rm -f *.o *~ *.s dll_* *.a *#
12
13
depend:
14
$(CC) $(CFLAGS) -M *.c > .depend
15
16
ifeq (.depend,$(wildcard .depend))
17
include .depend
18
endif