From 1b1ab1afee7c059091e8182be5cf7f31da4d16b5 Mon Sep 17 00:00:00 2001 From: tomsmeding Date: Sat, 4 Mar 2017 10:46:00 +0100 Subject: Initial initial pre-alpha-alpha GUI code --- Makefile | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 009c5bc..1b7d53c 100644 --- a/Makefile +++ b/Makefile @@ -1,20 +1,23 @@ CXX = g++ -CXXFLAGS = -Wall -Wextra -std=c++11 -g -fwrapv -TARGET = sim +CXXFLAGS = -Wall -Wextra -std=c++11 -g -fwrapv -I$(FLTK)/include +LDFLAGS = -L$(FLTK)/lib -lfltk +TARGETS = sim gui + +FLTK = /usr/local/opt/fltk .PHONY: all clean remake -all: $(TARGET) +all: $(TARGETS) clean: - rm -f $(TARGET) *.o + rm -f $(TARGETS) *.o remake: clean $(MAKE) all -$(TARGET): $(patsubst %.cpp,%.o,$(wildcard *.cpp)) - $(CXX) -o $@ $^ +$(TARGETS): %: %.o $(filter-out $(addsuffix .o,$(TARGETS)),$(patsubst %.cpp,%.o,$(wildcard *.cpp))) + $(CXX) -o $@ $^ $(LDFLAGS) %.o: %.cpp $(wildcard *.h) $(CXX) $(CXXFLAGS) -c -o $@ $< -- cgit v1.2.3-70-g09d2