Parent Directory | Revision Log
Revision 392 - (view) (download)
1 : | Isibaar | 3 | #/************************************************************************** |
2 : | # * | ||
3 : | # * generic makefile | ||
4 : | # * | ||
5 : | # * defines: -DLINUX -DBIG_ENDIAN | ||
6 : | # * | ||
7 : | # * | ||
8 : | # *************************************************************************/ | ||
9 : | |||
10 : | |||
11 : | include Makefile.inc | ||
12 : | |||
13 : | |||
14 : | CC = gcc -Wall | ||
15 : | CFLAGS = | ||
16 : | |||
17 : | |||
18 : | RM = rm -rf | ||
19 : | |||
20 : | |||
21 : | all: $(LIB) $(LIBSO) | ||
22 : | |||
23 : | |||
24 : | $(LIB): $(SRC:.c=.o) | ||
25 : | ar rcs $@ $^ | ||
26 : | |||
27 : | |||
28 : | $(LIBSO): $(SRC:.c=.o) | ||
29 : | $(CC) $^ -shared -lc -lm -o $@ | ||
30 : | |||
31 : | |||
32 : | remove-all: | ||
33 : | $(RM) $(DIRS) | ||
34 : | $(RM) $(LIB) | ||
35 : | $(RM) $(LIBSO) |
No admin address has been configured | ViewVC Help |
Powered by ViewVC 1.0.4 |