mirror of
https://github.com/netbirdio/FreeBSD-ports.git
synced 2026-05-22 18:42:42 -07:00
18 lines
348 B
Plaintext
18 lines
348 B
Plaintext
--- Makefile.orig 2006-05-16 20:11:29 UTC
|
|
+++ Makefile
|
|
@@ -3,11 +3,10 @@ OBJECTS=main.o
|
|
TARGET=pipepanic
|
|
|
|
# Settings for x86.
|
|
-CC=gcc
|
|
-CFLAGS=-O2 -Wall -pedantic `sdl-config --cflags`
|
|
-LINK=gcc
|
|
+CFLAGS+=`$(SDL_CONFIG) --cflags`
|
|
+LINK=$(CC)
|
|
LDFLAGS=
|
|
-LIBS=`sdl-config --libs`
|
|
+LIBS=`$(SDL_CONFIG) --libs`
|
|
|
|
all:
|
|
$(CC) $(CFLAGS) -c $(SOURCES)
|