source: npl/mediabox/lcdproc_edwin/src/shared/Makefile @ c5c522c

gcc484ntopperl-5.22
Last change on this file since c5c522c was c5c522c, checked in by Edwin Eefting <edwin@datux.nl>, 8 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########################################################################
4include ../Makefile.config
5
6
7TARGET = libLCDstuff.a
8OBJ = 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#
15all: $(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#
29install: $(TARGET)
30        @echo No shared stuff will be installed...
31
32
33##################################################################
34# Other stuff...
35#
36clean:
37        rm -f $(OBJ) $(TARGET) *~ core
38
39edit:
40        emacs . &
41
Note: See TracBrowser for help on using the repository browser.