Updated Makefile

This commit is contained in:
Armando Rivera 2013-11-10 15:53:54 -05:00
parent 57ae8f5834
commit 3670f2b67b

View File

@ -1,11 +1,11 @@
all: help
CC = g++
LDFLAGS = $(shell wx-config --libs --cflags)
LDFLAGS = $(shell wx-config --libs --cflags) -ldl
PLATFORM := $(shell uname -s)
help:
$(CC) $(LDFLAGS) $@.cpp -o $@
$(CC) $@.cpp $(LDFLAGS) -o $@
clean:
@$(RM) -f help