Magellan Linux

Annotation of /mcore-src/trunk/mcore-tools/src/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2142 - (hide annotations) (download)
Fri Jan 10 13:07:03 2014 UTC (10 years, 4 months ago) by niro
File size: 249 byte(s)
-added local Makefile for xinfo
1 niro 2142 include ../Makefile.inc
2    
3     XINFO_CFLAGS = -lX11
4    
5     all: xinfo
6    
7     xinfo: xinfo.o
8     $(CC) $(XINFO_CFLAGS) -o $@ $<
9    
10     *.o: *.c
11     $(CC) -c -o $@ $<
12    
13     install: xinfo
14     $(INSTALL) -m0755 xinfo $(DESTDIR)/$(BINDIR)
15    
16     clean:
17     rm -f *.o xinfo
18    
19     .PHONY: all install clean