perl-5.22
|
Last change
on this file since 48bf314 was
c5c522c,
checked in by Edwin Eefting <edwin@datux.nl>, 9 years ago
|
|
initial commit, transferred from cleaned syn3 svn tree
|
-
Property mode set to
100644
|
|
File size:
913 bytes
|
| Line | |
|---|
| 1 | ######################################################################## |
|---|
| 2 | # You shouldn't need to touch anything below here. |
|---|
| 3 | ######################################################################## |
|---|
| 4 | include ../Makefile.config |
|---|
| 5 | |
|---|
| 6 | |
|---|
| 7 | TARGET = libLCDstuff.a |
|---|
| 8 | OBJ = LL.o sockets.o str.o |
|---|
| 9 | #OBJ = LL.o config.o sockets.o |
|---|
| 10 | #TODO: config and sockets stuff... |
|---|
| 11 | |
|---|
| 12 | ################################################################### |
|---|
| 13 | # Compilation... |
|---|
| 14 | # |
|---|
| 15 | all: $(TARGET) |
|---|
| 16 | |
|---|
| 17 | $(TARGET): $(OBJ) Makefile |
|---|
| 18 | ar rcs $(TARGET) $(OBJ) |
|---|
| 19 | #$(TARGET): $(OBJ) Makefile |
|---|
| 20 | # $(GCC) -s $(MISC) -o $(TARGET) $(OBJ) $(LIB) |
|---|
| 21 | |
|---|
| 22 | %.o: %.c %.h Makefile |
|---|
| 23 | $(GCC) -c $(MISC) $< |
|---|
| 24 | |
|---|
| 25 | |
|---|
| 26 | ################################################################## |
|---|
| 27 | # Installation |
|---|
| 28 | # |
|---|
| 29 | install: $(TARGET) |
|---|
| 30 | @echo No shared stuff will be installed... |
|---|
| 31 | |
|---|
| 32 | |
|---|
| 33 | ################################################################## |
|---|
| 34 | # Other stuff... |
|---|
| 35 | # |
|---|
| 36 | clean: |
|---|
| 37 | rm -f $(OBJ) $(TARGET) *~ core |
|---|
| 38 | |
|---|
| 39 | edit: |
|---|
| 40 | emacs . & |
|---|
| 41 | |
|---|
Note: See
TracBrowser
for help on using the repository browser.