# makefile generated by Hard Hat
# project: assemble version: 0.0.1


TARGET = assemble
CC = gcc
CXX = g++
CFLAGS = -Wall -Wno-deprecated -g -DAPPVERSION='"0.0.1"'
CXXFLAGS = $(CFLAGS)

OBJECTS = \
	assemble.o

$(TARGET): $(OBJECTS)
	g++ $^ -L../libcontainer -lcontainer -o $@

default:
	make assemble

# specific dependencies and compile flags



clean:
	rm -rf $(OBJECTS)
	rm -rf $(TARGET)

linecount:
	wc *.c *.cpp *.h

install:
	cp $(TARGET) /usr/local/bin


