Magellan Linux

Annotation of /mcore-src/trunk/mcore-tools/src/modules/basic-input/Makefile

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2195 - (hide annotations) (download)
Fri Jan 10 14:42:29 2014 UTC (10 years, 4 months ago) by niro
File size: 256 byte(s)
-added basic-input module
1 niro 2195 include ../../../Makefile.inc
2    
3     SCRIPTS = input.client.class
4    
5     all: $(SCRIPTS)
6    
7     install: all
8     $(INSTALL) -d $(DESTDIR)/$(MCORE_LIBDIR)/include
9     $(INSTALL) -m0644 *.class $(DESTDIR)/$(MCORE_LIBDIR)/include
10    
11     clean:
12     rm -f $(SCRIPTS)
13    
14     .PHONY: all install clean