Files correlati : Ricompilazione Demo : [ ] Commento : Progetti e altra roba per Linux git-svn-id: svn://10.65.10.50/trunk@11293 c028cbd2-c16b-5b4b-a496-9718f37d4682
		
			
				
	
	
		
			31 lines
		
	
	
		
			795 B
		
	
	
	
		
			Makefile
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			31 lines
		
	
	
		
			795 B
		
	
	
	
		
			Makefile
		
	
	
		
			Executable File
		
	
	
	
	
# $Id: Makefile,v 1.1 2003-06-26 17:31:40 alex Exp $
 | 
						|
#
 | 
						|
# Makefile to create Hardlock Demo for Linux
 | 
						|
#
 | 
						|
# $Revision: 1.1 $
 | 
						|
# $Author: alex $
 | 
						|
#
 | 
						|
 | 
						|
CC = gcc
 | 
						|
CFLAGS = -ansi -fomit-frame-pointer -fno-strength-reduce -Wall -DLINUX
 | 
						|
 | 
						|
all: hl-demo
 | 
						|
 | 
						|
rus: rusquery rusget ruswrite
 | 
						|
 | 
						|
clean:
 | 
						|
	rm -f hl-demo rusquery rusget ruswrite
 | 
						|
 | 
						|
hl-demo: libhlapi_lnx.a fastapi.h hlapi_c.h hl-demo.c
 | 
						|
	$(CC) $(CFLAGS) hl-demo.c -L. -lhlapi_lnx -o $@
 | 
						|
 | 
						|
rusquery: libhlapi_lnx.a fastapi.h hlapi_c.h rus/rusquery.c
 | 
						|
	$(CC) $(CFLAGS) -I . -I rus rus/rusquery.c -L. -lhlapi_lnx -o $@
 | 
						|
 | 
						|
rusget: libhlapi_lnx.a fastapi.h hlapi_c.h rus/rusget.c
 | 
						|
	$(CC) $(CFLAGS) -I . -I rus rus/rusget.c -L. -lhlapi_lnx -o $@
 | 
						|
 | 
						|
ruswrite: libhlapi_lnx.a fastapi.h hlapi_c.h rus/ruswrite.c
 | 
						|
	$(CC) $(CFLAGS) -I . -I rus rus/ruswrite.c -L. -lhlapi_lnx -o $@
 | 
						|
 |