mirror of
https://git.freebsd.org/ports.git
synced 2025-07-04 02:49:14 -04:00
18 lines
383 B
Text
18 lines
383 B
Text
--- Makefile.orig 2004-01-27 19:53:38 UTC
|
|
+++ Makefile
|
|
@@ -1,12 +1,11 @@
|
|
#Makefile for nec2c 21 Aug 2003
|
|
|
|
-SHELL = /bin/sh
|
|
-CC = gcc -Wall -O3 -g
|
|
+all: nec2c
|
|
|
|
-objects = nec2c.o misc.o somnec.o
|
|
+objects = nec2c.o misc.o somnec.o
|
|
|
|
nec2c : $(objects)
|
|
- $(CC) -lm -lefence -o nec2c $(objects)
|
|
+ $(CC) -lm -o nec2c $(objects) -L${PREFIX}/lib -lccm
|
|
|
|
$(objects) : nec2c.h
|
|
|